home *** CD-ROM | disk | FTP | other *** search
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/Changelog,v
- retrieving revision 1.19
- diff -c -r1.19 Changelog
- *** 1.19 1993/02/22 18:18:00
- --- Changelog 1993/07/13 20:29:53
- ***************
- *** 303,305 ****
- --- 303,310 ----
- build some -m68020 -m68881 libraries for the Falcon...
-
- ---------------------------- Patchlevel 21 ------------------------------
- +
- + ccos.c, csin.c:: Stefan Steyer (dc4i@br0.hrz.th-darmstadt.de)
- + Corrections for building library with spf and ERROR_CHECK.
- +
- + ---------------------------- Patchlevel 22 ------------------------------
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/PatchLev.h,v
- retrieving revision 1.18
- diff -c -r1.18 PatchLev.h
- *** 1.18 1993/02/22 18:18:01
- --- PatchLev.h 1993/07/13 20:29:56
- ***************
- *** 1,4 ****
- ! #define PatchLevel "21"
-
- /*
- *
- --- 1,4 ----
- ! #define PatchLevel "22"
-
- /*
- *
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/ccos.c,v
- retrieving revision 1.5
- diff -c -r1.5 ccos.c
- *** 1.5 1992/03/06 19:34:30
- --- ccos.c 1993/07/13 20:29:59
- ***************
- *** 79,90 ****
- }
- #endif !defined (__M68881__) && !defined (sfp004)
-
- ! #ifdef __M68881__
- __asm("
- .text
- _funcname:
- .ascii \"ccos\\0\"
- .even
- .globl _ccos
- _ccos:
- movel a1,d0 | save a1 as return value
- --- 79,97 ----
- }
- #endif !defined (__M68881__) && !defined (sfp004)
-
- ! #if defined (__M68881__) || defined (sfp004)
- ! # ifdef ERROR_CHECK /* no error checking for now */
- __asm("
- .text
- _funcname:
- .ascii \"ccos\\0\"
- .even
- + # endif ERROR_CHECK
- + #endif defined (__M68881__) || defined (sfp004)
- +
- + #ifdef __M68881__
- + __asm("
- + .text
- .globl _ccos
- _ccos:
- movel a1,d0 | save a1 as return value
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/csin.c,v
- retrieving revision 1.5
- diff -c -r1.5 csin.c
- *** 1.5 1992/03/06 19:34:30
- --- csin.c 1993/07/13 20:30:01
- ***************
- *** 78,89 ****
- }
- #endif !defined (__M68881__) && !defined (sfp004)
-
- ! #ifdef __M68881__
- __asm("
- .text
- _funcname:
- .ascii \"csin\\0\"
- .even
- .globl _csin
- _csin:
- movel a1,d0 | save a1 as return value
- --- 78,96 ----
- }
- #endif !defined (__M68881__) && !defined (sfp004)
-
- ! #if defined (__M68881__) || defined (sfp004)
- ! # ifdef ERROR_CHECK /* no error checking for now */
- __asm("
- .text
- _funcname:
- .ascii \"csin\\0\"
- .even
- + # endif ERROR_CHECK
- + #endif defined (__M68881__) || defined (sfp004)
- +
- + #ifdef __M68881__
- + __asm("
- + .text
- .globl _csin
- _csin:
- movel a1,d0 | save a1 as return value
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/math.h,v
- retrieving revision 1.15
- diff -c -r1.15 math.h
- *** 1.15 1992/12/28 08:11:51
- --- math.h 1993/07/13 20:30:04
- ***************
- *** 100,112 ****
-
- extern const double _infinitydf; /* in normdf.cpp */
-
- - #define HUGE_VAL (_infinitydf)
- - #define HUGE HUGE_VAL
-
- ! #ifdef _M68881
- ! #include <math-68881.h>
- #endif
-
- #ifdef __GNUC__
- # ifndef __cplusplus
- # ifndef max
- --- 100,114 ----
-
- extern const double _infinitydf; /* in normdf.cpp */
-
-
- ! #if defined(_M68881) || defined(__M68881__)
- ! # include <math-68881.h>
- ! #else
- ! # define HUGE_VAL (_infinitydf)
- #endif
-
- + #define HUGE HUGE_VAL
- +
- #ifdef __GNUC__
- # ifndef __cplusplus
- # ifndef max
- ***************
- *** 116,122 ****
- # endif
- #endif
-
- ! #ifndef _M68881
- __EXTERN double acos __PROTO((double));
- __EXTERN double asin __PROTO((double));
- __EXTERN double atan __PROTO((double));
- --- 118,124 ----
- # endif
- #endif
-
- ! #if !(defined(_M68881) || defined(__M68881__))
- __EXTERN double acos __PROTO((double));
- __EXTERN double asin __PROTO((double));
- __EXTERN double atan __PROTO((double));
- ***************
- *** 148,154 ****
-
- #ifndef __STRICT_ANSI__
-
- ! #ifdef _M68881
- # define dabs(x) fabs(x)
- #endif
-
- --- 150,156 ----
-
- #ifndef __STRICT_ANSI__
-
- ! #if defined(_M68881) || defined(__M68881__)
- # define dabs(x) fabs(x)
- #endif
-
- ***************
- *** 184,190 ****
-
- #endif /* __STRICT_ANSI__ */
-
- ! #ifndef _M68881
- __EXTERN double modf __PROTO((double, double *));
- __EXTERN double ldexp __PROTO((double, int));
- __EXTERN double frexp __PROTO((double, int *));
- --- 186,192 ----
-
- #endif /* __STRICT_ANSI__ */
-
- ! #if !(defined(_M68881) || defined(__M68881__))
- __EXTERN double modf __PROTO((double, double *));
- __EXTERN double ldexp __PROTO((double, int));
- __EXTERN double frexp __PROTO((double, int *));
-